[dbo].[dt_dropuserobjectbyid]
SQLServer
>
iMIS1521GA
>
Stored Procedures
> dbo.dt_dropuserobjectbyid
Properties
Parameters
Permissions
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@id
int
4
Permissions
Type
Action
Owning Principal
Grant
Execute
public
SQL Script
/*
** Drop an object from the dbo.dtproperties table
*/
create
procedure
dbo.dt_dropuserobjectbyid
@id
int
as
set
nocount
on
delete
from
dbo.dtproperties
where
objectid
=
@id
GO
GRANT
EXECUTE
ON
[dbo]
.
[dt_dropuserobjectbyid]
TO
[public]
GO
Uses
[dbo].[dtproperties]
dbo